home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / misc / moonbas2 / random.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-07  |  316 b   |  8 lines

  1. //----------------------------------------------------------------------------
  2. // Borland C++ compatible random functions:
  3. //----------------------------------------------------------------------------
  4.  
  5. #define  randomize() srand ( time (NULL) )
  6. #define  random(num) (int)(((long)rand()*(num))/(RAND_MAX+1))
  7.  
  8.